home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech's Sprocket™ / Sprocket-12.06.94 / SprocketSample / BuildConditionals.h next >
Encoding:
C/C++ Source or Header  |  1994-12-19  |  1.0 KB  |  51 lines  |  [TEXT/MMCC]

  1. /*
  2.     File:        BuildConditionals.h
  3.  
  4.     Contains:    Defines used to control what capabilities are built
  5.  
  6.     Written by: Dave Falkenburg
  7.  
  8.     Copyright:    © 1994 by Dave Falkenburg, all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.      
  12.          <1>    11/12/94    DRF        First checked in.
  13.          <3>      9/9/94    DRF        Conditionalize AOCE support. Assume just a base system for now.
  14.          <2>      9/1/94    DRF        We only run under System 7.0 or later. NOTE: This typically
  15.                                     requires rebuilding precompiled headers.
  16.  */
  17.  
  18. #ifndef    _BUILDCONDITIONALS_
  19. #define    _BUILDCONDITIONALS_
  20.  
  21. //#define    SystemSevenOrLater    1
  22.  
  23. #ifndef    qDebug
  24. #define    qDebug                        0
  25. #endif
  26.  
  27. #ifndef    qAOCEAware
  28. #define    qAOCEAware                    0
  29. #endif
  30.  
  31. #ifndef    qUseQuickDrawGX
  32. #define    qUseQuickDrawGX                0
  33. #define    qRequireDrawGX                0
  34. #define    qUseQuickDrawGXDebugging    0
  35. #endif
  36.  
  37. #ifndef    qRequireThreadManager
  38. #define    qRequireThreadManager    0
  39. #endif
  40.  
  41. #ifndef    qInlineInputAware
  42. #define    qInlineInputAware    0
  43. #endif
  44.  
  45. #if    qUseQuickDrawGX
  46. //    Tell QuickDrawGX that we use universal headers
  47. #define    ppcinterfaces        1
  48. #endif
  49.  
  50. #endif
  51.